home *** CD-ROM | disk | FTP | other *** search
/ Sprite 1984 - 1993 / Sprite 1984 - 1993.iso / src / lib / c / unixSyscall / close.c < prev    next >
C/C++ Source or Header  |  1989-01-06  |  1KB  |  51 lines

  1. /* 
  2.  * close.c --
  3.  *
  4.  *    Procedure to map from Unix close system call to Sprite.
  5.  *
  6.  * Copyright (C) 1986 Regents of the University of California
  7.  * All rights reserved.
  8.  */
  9.  
  10. #ifndef lint
  11. static char rcsid[] = "$Header: /sprite/src/lib/c/unixSyscall/RCS/close.c,v 1.3 89/01/06 08:03:57 brent Exp $ SPRITE (Berkeley)";
  12. #endif not lint
  13.  
  14. #include <sprite.h>
  15. #include <fs.h>
  16. #include "compatInt.h"
  17.  
  18.  
  19. /*
  20.  *----------------------------------------------------------------------
  21.  *
  22.  * close --
  23.  *
  24.  *    Procedure to map from Unix close system call to Sprite Fs_Close.
  25.  *
  26.  * Results:
  27.  *    UNIX_ERROR is returned upon error, with the actual error code
  28.  *    stored in errno.  UNIX_SUCCESS is returned upon success.
  29.  *
  30.  * Side effects:
  31.  *    The steamId passed to close is no longer associated with an open 
  32.  *    file.
  33.  *
  34.  *----------------------------------------------------------------------
  35.  */
  36.  
  37. int
  38. close(streamId)
  39.     int streamId;        /* identifier for stream to close */
  40. {
  41.     ReturnStatus status;    /* result returned by Fs_Close */
  42.  
  43.     status = Fs_Close(streamId);
  44.     if (status != SUCCESS) {
  45.     errno = Compat_MapCode(status);
  46.     return(UNIX_ERROR);
  47.     } else {
  48.     return(UNIX_SUCCESS);
  49.     }
  50. }
  51.